home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Misc / msql-1.0.6 / src / regexp / try.c < prev   
C/C++ Source or Header  |  1994-06-29  |  5KB  |  244 lines

  1. /*
  2.  * Simple test program for regexp(3) stuff.  Knows about debugging hooks.
  3.  *
  4.  *    Copyright (c) 1986 by University of Toronto.
  5.  *    Written by Henry Spencer.  Not derived from licensed software.
  6.  *
  7.  *    Permission is granted to anyone to use this software for any
  8.  *    purpose on any computer system, and to redistribute it freely,
  9.  *    subject to the following restrictions:
  10.  *
  11.  *    1. The author is not responsible for the consequences of use of
  12.  *        this software, no matter how awful, even if they arise
  13.  *        from defects in it.
  14.  *
  15.  *    2. The origin of this software must not be misrepresented, either
  16.  *        by explicit claim or by omission.
  17.  *
  18.  *    3. Altered versions must be plainly marked as such, and must not
  19.  *        be misrepresented as being the original software.
  20.  *
  21.  * Usage: try re [string [output [-]]]
  22.  * The re is compiled and dumped, regexeced against the string, the result
  23.  * is applied to output using regsub().  The - triggers a running narrative
  24.  * from regexec().  Dumping and narrative don't happen unless DEBUG.
  25.  *
  26.  * If there are no arguments, stdin is assumed to be a stream of lines with
  27.  * five fields:  a r.e., a string to match it against, a result code, a
  28.  * source string for regsub, and the proper result.  Result codes are 'c'
  29.  * for compile failure, 'y' for match success, 'n' for match failure.
  30.  * Field separator is tab.
  31.  */
  32. #include <stdio.h>
  33. #include <regexp.h>
  34.  
  35.  
  36. #include <common/portability.h>
  37.  
  38.  
  39.  
  40. #ifdef ERRAVAIL
  41. char *progname;
  42. extern char *mkprogname();
  43. #endif
  44.  
  45. #ifdef DEBUG
  46. extern int regnarrate;
  47. #endif
  48.  
  49. char buf[BUFSIZ];
  50.  
  51. int errreport = 0;        /* Report errors via errseen? */
  52. char *errseen = NULL;        /* Error message. */
  53. int status = 0;            /* Exit status. */
  54.  
  55. /* ARGSUSED */
  56. main(argc, argv)
  57. int argc;
  58. char *argv[];
  59. {
  60.     regexp *r;
  61.     int i;
  62.  
  63. #ifdef ERRAVAIL
  64.     progname = mkprogname(argv[0]);
  65. #endif
  66.  
  67.     if (argc == 1) {
  68.         multiple();
  69.         exit(status);
  70.     }
  71.  
  72.     r = regcomp(argv[1]);
  73.     if (r == NULL)
  74.         error("regcomp failure", "");
  75. #ifdef DEBUG
  76.     regdump(r);
  77.     if (argc > 4)
  78.         regnarrate++;
  79. #endif
  80.     if (argc > 2) {
  81.         i = regexec(r, argv[2]);
  82.         printf("%d", i);
  83.         for (i = 1; i < NSUBEXP; i++)
  84.             if (r->startp[i] != NULL && r->endp[i] != NULL)
  85.                 printf(" \\%d", i);
  86.         printf("\n");
  87.     }
  88.     if (argc > 3) {
  89.         regsub(r, argv[3], buf);
  90.         printf("%s\n", buf);
  91.     }
  92.     exit(status);
  93. }
  94.  
  95. void
  96. regerror(s)
  97. char *s;
  98. {
  99.     if (errreport)
  100.         errseen = s;
  101.     else
  102.         error(s, "");
  103. }
  104.  
  105. #ifndef ERRAVAIL
  106. error(s1, s2)
  107. char *s1;
  108. char *s2;
  109. {
  110.     fprintf(stderr, "regexp: ");
  111.     fprintf(stderr, s1, s2);
  112.     fprintf(stderr, "\n");
  113.     exit(1);
  114. }
  115. #endif
  116.  
  117. int lineno;
  118.  
  119. regexp badregexp;        /* Implicit init to 0. */
  120.  
  121. multiple()
  122. {
  123.     char rbuf[BUFSIZ];
  124.     char *field[5];
  125.     char *scan;
  126.     int i;
  127.     regexp *r;
  128.     extern char *strchr();
  129.  
  130.     errreport = 1;
  131.     lineno = 0;
  132.     while (fgets(rbuf, sizeof(rbuf), stdin) != NULL) {
  133.         rbuf[strlen(rbuf)-1] = '\0';    /* Dispense with \n. */
  134.         lineno++;
  135.         scan = rbuf;
  136.         for (i = 0; i < 5; i++) {
  137.             field[i] = scan;
  138.             if (field[i] == NULL) {
  139.                 complain("bad testfile format", "");
  140.                 exit(1);
  141.             }
  142.             scan = strchr(scan, '\t');
  143.             if (scan != NULL)
  144.                 *scan++ = '\0';
  145.         }
  146.         try(field);
  147.     }
  148.  
  149.     /* And finish up with some internal testing... */
  150.     lineno = 9990;
  151.     errseen = NULL;
  152.     if (regcomp((char *)NULL) != NULL || errseen == NULL)
  153.         complain("regcomp(NULL) doesn't complain", "");
  154.     lineno = 9991;
  155.     errseen = NULL;
  156.     if (regexec((regexp *)NULL, "foo") || errseen == NULL)
  157.         complain("regexec(NULL, ...) doesn't complain", "");
  158.     lineno = 9992;
  159.     r = regcomp("foo");
  160.     if (r == NULL) {
  161.         complain("regcomp(\"foo\") fails", "");
  162.         return;
  163.     }
  164.     lineno = 9993;
  165.     errseen = NULL;
  166.     if (regexec(r, (char *)NULL) || errseen == NULL)
  167.         complain("regexec(..., NULL) doesn't complain", "");
  168.     lineno = 9994;
  169.     errseen = NULL;
  170.     regsub((regexp *)NULL, "foo", rbuf);
  171.     if (errseen == NULL)
  172.         complain("regsub(NULL, ..., ...) doesn't complain", "");
  173.     lineno = 9995;
  174.     errseen = NULL;
  175.     regsub(r, (char *)NULL, rbuf);
  176.     if (errseen == NULL)
  177.         complain("regsub(..., NULL, ...) doesn't complain", "");
  178.     lineno = 9996;
  179.     errseen = NULL;
  180.     regsub(r, "foo", (char *)NULL);
  181.     if (errseen == NULL)
  182.         complain("regsub(..., ..., NULL) doesn't complain", "");
  183.     lineno = 9997;
  184.     errseen = NULL;
  185.     if (regexec(&badregexp, "foo") || errseen == NULL)
  186.         complain("regexec(nonsense, ...) doesn't complain", "");
  187.     lineno = 9998;
  188.     errseen = NULL;
  189.     regsub(&badregexp, "foo", rbuf);
  190.     if (errseen == NULL)
  191.         complain("regsub(nonsense, ..., ...) doesn't complain", "");
  192. }
  193.  
  194. try(fields)
  195. char **fields;
  196. {
  197.     regexp *r;
  198.     char dbuf[BUFSIZ];
  199.  
  200.     errseen = NULL;
  201.     r = regcomp(fields[0]);
  202.     if (r == NULL) {
  203.         if (*fields[2] != 'c')
  204.             complain("regcomp failure in `%s'", fields[0]);
  205.         return;
  206.     }
  207.     if (*fields[2] == 'c') {
  208.         complain("unexpected regcomp success in `%s'", fields[0]);
  209.         free((char *)r);
  210.         return;
  211.     }
  212.     if (!regexec(r, fields[1])) {
  213.         if (*fields[2] != 'n')
  214.             complain("regexec failure in `%s'", "");
  215.         free((char *)r);
  216.         return;
  217.     }
  218.     if (*fields[2] == 'n') {
  219.         complain("unexpected regexec success", "");
  220.         free((char *)r);
  221.         return;
  222.     }
  223.     errseen = NULL;
  224.     regsub(r, fields[3], dbuf);
  225.     if (errseen != NULL) {
  226.         complain("regsub complaint", "");
  227.         free((char *)r);
  228.         return;
  229.     }
  230.     if (strcmp(dbuf, fields[4]) != 0)
  231.         complain("regsub result `%s' wrong", dbuf);
  232.     free((char *)r);
  233. }
  234.  
  235. complain(s1, s2)
  236. char *s1;
  237. char *s2;
  238. {
  239.     fprintf(stderr, "try: %d: ", lineno);
  240.     fprintf(stderr, s1, s2);
  241.     fprintf(stderr, " (%s)\n", (errseen != NULL) ? errseen : "");
  242.     status = 1;
  243. }
  244.